runtime.workbufhdr.nobj (field)

49 uses

	runtime (current package)
		mgc.go#L1412: 				print(" wbuf1.n=", gcw.wbuf1.nobj)
		mgc.go#L1417: 				print(" wbuf2.n=", gcw.wbuf2.nobj)
		mgcmark.go#L876: 			for i := 0; i < x.nobj; i++ {
		mgcmark.go#L885: 		x.nobj = 0
		mgcstack.go#L218: 		buf.nobj = 0
		mgcstack.go#L221: 	} else if buf.nobj == len(buf.obj) {
		mgcstack.go#L228: 		buf.nobj = 0
		mgcstack.go#L232: 	buf.obj[buf.nobj] = p
		mgcstack.go#L233: 	buf.nobj++
		mgcstack.go#L248: 		if buf.nobj == 0 {
		mgcstack.go#L262: 		buf.nobj--
		mgcstack.go#L263: 		return buf.obj[buf.nobj], head == &s.cbuf
		mgcstack.go#L283: 	if x.nobj > 0 && uint32(addr-s.stack.lo) < x.obj[x.nobj-1].off+x.obj[x.nobj-1].size {
		mgcstack.go#L286: 	if x.nobj == len(x.obj) {
		mgcstack.go#L294: 	obj := &x.obj[x.nobj]
		mgcstack.go#L295: 	x.nobj++
		mgcwork.go#L122: 	} else if wbuf.nobj == len(wbuf.obj) {
		mgcwork.go#L125: 		if wbuf.nobj == len(wbuf.obj) {
		mgcwork.go#L134: 	wbuf.obj[wbuf.nobj] = obj
		mgcwork.go#L135: 	wbuf.nobj++
		mgcwork.go#L153: 	} else if wbuf.nobj == len(wbuf.obj) {
		mgcwork.go#L157: 	wbuf.obj[wbuf.nobj] = obj
		mgcwork.go#L158: 	wbuf.nobj++
		mgcwork.go#L179: 		for wbuf.nobj == len(wbuf.obj) {
		mgcwork.go#L186: 		n := copy(wbuf.obj[wbuf.nobj:], obj)
		mgcwork.go#L187: 		wbuf.nobj += n
		mgcwork.go#L209: 	if wbuf.nobj == 0 {
		mgcwork.go#L212: 		if wbuf.nobj == 0 {
		mgcwork.go#L223: 	wbuf.nobj--
		mgcwork.go#L224: 	return wbuf.obj[wbuf.nobj]
		mgcwork.go#L236: 	if wbuf.nobj == 0 {
		mgcwork.go#L240: 	wbuf.nobj--
		mgcwork.go#L241: 	return wbuf.obj[wbuf.nobj]
		mgcwork.go#L253: 		if wbuf.nobj == 0 {
		mgcwork.go#L262: 		if wbuf.nobj == 0 {
		mgcwork.go#L291: 	if wbuf := w.wbuf2; wbuf.nobj != 0 {
		mgcwork.go#L295: 	} else if wbuf := w.wbuf1; wbuf.nobj > 4 {
		mgcwork.go#L310: 	return w.wbuf1 == nil || (w.wbuf1.nobj == 0 && w.wbuf2.nobj == 0)
		mgcwork.go#L319: 	nobj int
		mgcwork.go#L335: 	if b.nobj == 0 {
		mgcwork.go#L341: 	if b.nobj != 0 {
		mgcwork.go#L389: 			newb.nobj = 0
		mgcwork.go#L434: 	n := b.nobj / 2
		mgcwork.go#L435: 	b.nobj -= n
		mgcwork.go#L436: 	b1.nobj = n
		mgcwork.go#L437: 	memmove(unsafe.Pointer(&b1.obj[0]), unsafe.Pointer(&b.obj[b.nobj]), uintptr(n)*unsafe.Sizeof(b1.obj[0]))